From 5f452a5e6ca5062f809af123a41d3cad9a8edab7 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 14 Sep 2021 12:21:34 -0400 Subject: [PATCH] Annotate gsk_rounded_rect_is_circular as pure And also mark gsk_rounded_rect_to_string as malloc. --- gsk/gskroundedrectprivate.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gsk/gskroundedrectprivate.h b/gsk/gskroundedrectprivate.h index 6dfe4b019d..8cd00d3995 100644 --- a/gsk/gskroundedrectprivate.h +++ b/gsk/gskroundedrectprivate.h @@ -24,7 +24,7 @@ void gsk_rounded_rect_scale_affine (GskRoundedRect float dx, float dy); -gboolean gsk_rounded_rect_is_circular (const GskRoundedRect *self); +gboolean gsk_rounded_rect_is_circular (const GskRoundedRect *self) G_GNUC_PURE; void gsk_rounded_rect_path (const GskRoundedRect *self, cairo_t *cr); @@ -33,7 +33,7 @@ void gsk_rounded_rect_to_float (const GskRounde gboolean gsk_rounded_rect_equal (gconstpointer rect1, gconstpointer rect2) G_GNUC_PURE; -char * gsk_rounded_rect_to_string (const GskRoundedRect *self); +char * gsk_rounded_rect_to_string (const GskRoundedRect *self) G_GNUC_MALLOC; G_END_DECLS -- 2.30.2